home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 23 / Amiga Format AFCD23 (Feb 1998, Issue 107).iso / -in_the_mag- / emulation / consoles / vision-8 / sources / v8.txt < prev    next >
Text File  |  1997-12-12  |  3KB  |  97 lines

  1.                          ******* Vision-8 *******
  2.                         The Portable CHIP8 Emulator
  3.                                 Version 1.0
  4.                                      
  5.                     Copyright (C) 1997  Marcel de Kogel
  6.               Amiga version copyright (C) 1997  Lars Malmborg
  7.  
  8. Hardware and Software Requirements
  9. ==================================
  10. Unix version:
  11.  X-Windows running in 8, 16 or 32 bits per pixel mode
  12. MS-DOS version:
  13.  A 286 or better microprocessor
  14.  A CGA video card
  15. Coleco ADAM version:
  16.  ADAM CP/M 2.2 or TDOS (TDOS recommended)
  17. MSX version:
  18.  64KB RAM
  19.  MSX-DOS 1.0
  20.  One or two joysticks supported
  21. Amiga version:
  22.  A 68020+
  23.  AmigaOS 3.x
  24.  (Optionally AmiWin to run the X version on Amiga)
  25. All: Some CHIP8 games
  26. For information about other ports, please check the distribution site.
  27.  
  28. Files included
  29. ==============
  30. v8      The emulator
  31. v8.txt  This file
  32. v8.bg   (MSX and ADAM only) Default background picture
  33. The latest version of Vision-8 can always be found on the Vision-8
  34. distribution site at http://www.komkon.org/~dekogel/vision8.html
  35.  
  36. Key Mappings
  37. ============
  38. Most of the original CHIP8 games are programmed for a keyboard with the
  39. following layout:
  40. 1 2 3 C
  41. 4 5 6 D
  42. 7 8 9 E
  43. A 0 B F
  44. This is emulated as follows:
  45. 1,2,3,4,q,w,e,r,   -  CHIP8 keypad
  46. a,s,d,f,z,x,c,v
  47. and
  48. 9,0,-,=,i,o,p,[,
  49. j,k,l,;,n,m,,,.
  50. Joystick                 -  (MSX and ADAM only) 1,2,3,4,6,7,8,9
  51. Fire buttons             -  (MSX and ADAM only) 5
  52. Keypads                  -  (ADAM only) 1,2,3, 4,5,6, 7,8,9, A,0,B
  53.  
  54. Special Keys:
  55. F1 (MSX,MS-DOS,Amiga) /  -  Reset virtual machine
  56. CTRL+X (ADAM)
  57. ESC                      -  Quit emulator (Also F10 on MS-DOS version)
  58.  
  59. Command line options*
  60. ====================
  61. -h              -  Print a help page describing the available options
  62. -ip <value>     -  Select number of opcodes per interrupt [15 or 16]
  63.                    Increase this value to run your games faster, decrease
  64.                    it to run them slower
  65. -up <value>     -  Select number of interrupts per screen update (MSX and
  66.                    ADAM only) [1]
  67. -bg <filename>  -  Select background picture to load (MSX and ADAM only)
  68.                    [v8.bg]
  69.                    The background picture is simply a dump of the VRAM:
  70.                    Pattern table is at location $0000, the colour table
  71.                    is at $1800
  72. -s <mode>       -  Select synchronisation mode [1]
  73.                    0 - Do not synchronise emulation
  74.                    1 - Synchronise emulation to hardware clock
  75.                    Using -sync 0 will speed up the emulation
  76.  
  77.  * The Amiga version uses the standard Amiga argument parser instead, so
  78.    try "v8 Help" to get it, or "v8 ?" for an argument template.
  79.  
  80. Legal issues
  81. ============
  82. This software can be used free of charge and may be distributed freely, as
  83. long as the archive isn't modified in any way, no profit is made from
  84. distributing it, and no games are supplied with it. Also, this software
  85. comes without any warranty, neither express nor implied: Use at your own
  86. risk
  87.  
  88. History
  89. =======
  90. 1.0  12-6-1997    Initial release
  91.  
  92. Please send your comments to Marcel at
  93. m.dekogel@student.utwente.nl
  94.  
  95. Amiga related comments should be sent to Lars at
  96. glue@df.lth.se
  97.